Projects: TEEMSS2 : Technical Hint Implementation
This page last changed on Feb 02, 2006 by scytacki.
Here is an approach for doing technical hints that only a little modification to the current object structure. It also includes how to use PfFrame objects. There will be a new PfTechnical Hint object it will have the following properties:
The vendor choice is a reference to a PfChoice object. The value of this choice will be used <PfChoice local_id="vendor_choice" > <choices> <PfCompoundDoc local_id="vendor_1"><text>Vernier</text></PfCompoundDoc> <PfCompoundDoc local_id="vendor_2"><text>Fourier</text></PfCompoundDoc> </choices> </PfChoice> ..... <PfTechnicalHint local_id="tech_hint_1"> <title>Temperature Technical Hint</title> <vendorChoice><object refid="${vendor_choice}"/></vendorChoice> <hintMap> <entry key="${vendor_1}"> <PfCompoundDoc><text> Text of technical implementation for vendor 1 goes here </text></PfCompoundDoc> </entry> <entry key="${vendor_2}"> <PfCompoundDoc><text> Text of technical implementation for vendor 2 goes here </text></PfCompoundDoc> </entry> <entry key="default"> <PfCompoundDoc><text> Text of a default technical hint goes here. If the vendor has not be chosen or there is not technical hint specific for this vendor then it should go here. </text></PfCompoundDoc> </entry> </hintMap> </PfTechnicalHint ..... <OTFrame local_id="tech_hint_frame" > <title>Technical Hint Frame</title> <width>400</width> <height>400</height> </OTFrame> .... <!-- this is with the text of compound document --> .... collect temperature <a href="${tech_hint_1}" target="${tech_hint_frame}"> see temperature technical hint </a> Note: |
Document generated by Confluence on Jan 27, 2014 16:43 |